home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _StringInsert.au3 < prev    next >
Text File  |  2006-06-17  |  214b  |  5 lines

  1. #include<string.au3>
  2. ; Inserts three "moving" underscores and prints them to the console
  3. For $i_loop = -20 To 20
  4.     ConsoleWrite($i_loop & @TAB & _StringInsert ("Supercalifragilistic", "___", $i_loop) & @CR)
  5. Next